SamplingProfileNode

data class SamplingProfileNode(size: Double, total: Double, stack: List<String>)

Heap profile sample.

Constructors

SamplingProfileNode
Link copied to clipboard
fun SamplingProfileNode(size: Double, total: Double, stack: List<String>)

Properties

size
Link copied to clipboard
val size: Double
Size of the sampled allocation.
stack
Link copied to clipboard
val stack: List<String>
Execution stack at the point of allocation.
total
Link copied to clipboard
val total: Double
Total bytes attributed to this sample.

Sources

jvm source
Link copied to clipboard